home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 May / PCWorld_2000-05_cd.bin / Software / TemaCD / povray / povwin3.exe / %MAINDIR% / Insert Menu / Textures A-M / texture example.txt < prev   
Encoding:
Text File  |  2000-04-06  |  407 b   |  23 lines

  1. texture
  2. {
  3.   pigment
  4.   {
  5.     marble // some pattern
  6.     color_map {[0.1 color red 1] [0.5 color rgbf 1]}
  7.     turbulence 0.5
  8.     scale <1,3,1>// transformations
  9.   }
  10.   // same pattern for normal and pigment adds weathered bumps
  11.   normal
  12.   {
  13.     marble // some pattern
  14.     turbulence 0.5
  15.     scale <1,3,1>// transformations
  16.   }
  17.   finish
  18.   {
  19.     ambient 0.2
  20.     specular 0.6 // shiny
  21.   }
  22. }
  23.